home *** CD-ROM | disk | FTP | other *** search
- onClipEvent(mouseDown){
- if(status == "play" || status == "boss" || status == "bez ship")
- {
- if(500 < getTimer() - old_time)
- {
- _parent.bullet.duplicateMovieClip("bullet" + depth,depth);
- _parent["bullet" + depth].x = this._x;
- _parent["bullet" + depth].y = this._y;
- num_fired++;
- depth++;
- old_time = getTimer();
- this.scrunch.gotoAndPlay(1);
- }
- }
- }
-